home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr04 / edv340.zip / EDVA.DOC < prev    next >
Text File  |  1992-12-08  |  820b  |  23 lines

  1. The best way to explain EDVA is to run it with a font.  Assuming you have
  2. both EDVA and SCRIPT.FNT, type
  3.  
  4. EDVA SCRIPT.FNT
  5.  
  6. Now, type a short word and hit the Enter key.  Get the picture?  When you get
  7. tired of playing, hit Ctrl-Z or F6.  This is the most direct way to run EDVA,
  8. but it's not very useful.  However, using DOS redirection and pipes, you can
  9. get input from and/or write output to files.  For example:
  10.  
  11. ECHO Hello! | EDVA SCRIPT.FNT
  12.  
  13. Should print "Hello!" in big letters for you.  Finally, suppose you have a
  14. small text file called SAMPLE.TXT with a few words in it, and you want to
  15. convert it to big letters and store it in SAMPLE.BAN:
  16.  
  17. EDVA SCRIPT.FNT < SAMPLE.TXT > SAMPLE.BAN
  18.  
  19. It's that simple.  If you're creative with batch files, you can make it do
  20. all sorts of tricks.
  21.  
  22. Enjoy!
  23.